home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 02 / 0 / DISK0202.ZIP / TRUTH.H < prev    next >
Text File  |  1984-01-01  |  305b  |  14 lines

  1. /*
  2.  * truth.h  14 Sep 83
  3.  *
  4.  *    This is the truth.
  5.  */
  6.  
  7. typedef int bool;            /* A true believer. */
  8. typedef int tris;            /* Yes, no, or maybe. */
  9.  
  10. #define FALSE        0        /* Negative. */
  11. #define TRUE        1        /* Positive. */
  12. #define MAYBE        2        /* Perhapsative. */
  13.                     /* Ideally, FALSE < MAYBE < TRUE. */
  14.